*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07070f;
  --bg-elevated: #0f0f1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f0f5;
  --text-muted: #8b8ba3;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --gradient: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 50%, var(--pink) 100%);
  --font: 'Outfit', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.gradient-orb--1 {
  width: 600px;
  height: 600px;
  background: rgba(124, 58, 237, 0.25);
  top: -200px;
  right: -150px;
}

.gradient-orb--2 {
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.15);
  bottom: 10%;
  left: -200px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(7, 7, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo__photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.nav__cta {
  padding: 0.6rem 1.25rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 4rem;
  z-index: 1;
}

.hero__inner {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--gradient);
  color: white;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn--large {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat__value {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Waveform */
.hero__waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 80px;
  margin-top: 4rem;
  opacity: 0.4;
}

.waveform-bar {
  width: 4px;
  background: var(--gradient);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 45%; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 70%; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 35%; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 90%; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 55%; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 80%; animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { height: 40%; animation-delay: 0.7s; }
.waveform-bar:nth-child(9) { height: 65%; animation-delay: 0.8s; }
.waveform-bar:nth-child(10) { height: 30%; animation-delay: 0.9s; }
.waveform-bar:nth-child(11) { height: 75%; animation-delay: 0.15s; }
.waveform-bar:nth-child(12) { height: 50%; animation-delay: 0.25s; }
.waveform-bar:nth-child(13) { height: 85%; animation-delay: 0.35s; }
.waveform-bar:nth-child(14) { height: 25%; animation-delay: 0.45s; }
.waveform-bar:nth-child(15) { height: 60%; animation-delay: 0.55s; }
.waveform-bar:nth-child(16) { height: 95%; animation-delay: 0.65s; }
.waveform-bar:nth-child(17) { height: 45%; animation-delay: 0.75s; }
.waveform-bar:nth-child(18) { height: 70%; animation-delay: 0.85s; }
.waveform-bar:nth-child(19) { height: 35%; animation-delay: 0.95s; }
.waveform-bar:nth-child(20) { height: 55%; animation-delay: 0.05s; }
.waveform-bar:nth-child(21) { height: 80%; animation-delay: 0.12s; }
.waveform-bar:nth-child(22) { height: 40%; animation-delay: 0.22s; }
.waveform-bar:nth-child(23) { height: 65%; animation-delay: 0.32s; }
.waveform-bar:nth-child(24) { height: 90%; animation-delay: 0.42s; }
.waveform-bar:nth-child(25) { height: 30%; animation-delay: 0.52s; }
.waveform-bar:nth-child(26) { height: 75%; animation-delay: 0.62s; }
.waveform-bar:nth-child(27) { height: 50%; animation-delay: 0.72s; }
.waveform-bar:nth-child(28) { height: 85%; animation-delay: 0.82s; }
.waveform-bar:nth-child(29) { height: 45%; animation-delay: 0.92s; }
.waveform-bar:nth-child(30) { height: 60%; animation-delay: 0.02s; }
.waveform-bar:nth-child(31) { height: 35%; animation-delay: 0.18s; }
.waveform-bar:nth-child(32) { height: 70%; animation-delay: 0.28s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* Trust */
.trust {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}

.trust__label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust__logos span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* Sections */
section {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Features */
.features {
  padding: 6rem 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Genres */
.genres {
  padding: 4rem 0 6rem;
}

.genres__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.genre-tag {
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}

.genre-tag:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(124, 58, 237, 0.1);
}

/* Highlight */
.highlight {
  padding: 6rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.highlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.highlight__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.highlight__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.highlight__content strong {
  color: var(--text);
  font-weight: 600;
}

.highlight__visual {
  display: flex;
  justify-content: center;
}

.vinyl {
  width: 280px;
  height: 280px;
  position: relative;
}

.vinyl__disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1a1a2e, #16213e, #0f3460, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 8s linear infinite;
  box-shadow:
    0 0 60px rgba(124, 58, 237, 0.3),
    inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.vinyl__disc::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vinyl__disc::after {
  content: '';
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.vinyl__label {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  z-index: 1;
  animation: spin 8s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Process */
.process {
  padding: 6rem 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step {
  position: relative;
  padding: 2rem;
  padding-top: 3rem;
}

.step__number {
  position: absolute;
  top: 0;
  left: 2rem;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* CTA */
.cta {
  padding: 6rem 0;
}

.cta__inner {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  position: relative;
  overflow: hidden;
}

.cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(124, 58, 237, 0.15), transparent 70%);
  pointer-events: none;
}

.cta__inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.cta__inner > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta__note {
  margin-top: 1.5rem !important;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  opacity: 0.7;
}

/* Donate button */
.donate-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 15, 26, 0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.donate-btn svg {
  color: #ec4899;
  flex-shrink: 0;
}

.donate-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.2);
}

.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.donate-modal[hidden] {
  display: none;
}

.donate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.donate-modal__panel {
  position: relative;
  width: min(400px, 100%);
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.donate-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.donate-modal__close:hover {
  color: var(--text);
  background: var(--bg-card);
}

.donate-modal__panel h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.donate-modal__subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.donate-modal__amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.donate-modal__amount {
  padding: 1rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.donate-modal__amount:hover {
  border-color: var(--accent-light);
  background: rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
}

.donate-modal__custom {
  display: inline-block;
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.donate-modal__custom:hover {
  text-decoration: underline;
}

/* Cookie banner & widget */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 15, 26, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-banner__text {
  flex: 1;
  min-width: min(100%, 280px);
}

.cookie-banner__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.cookie-banner__desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.cookie-banner__desc a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--text-muted);
}

.cookie-banner__btn--reject:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card);
}

.cookie-banner__btn--accept {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

.cookie-banner__btn--accept:hover {
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.cookie-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #1a3a6b;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cookie-widget:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(26, 58, 107, 0.5);
}

.cookie-widget svg {
  opacity: 0.95;
}

/* Footer */
.footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__brand {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__brand:hover {
  color: var(--accent-light);
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__links > a:not(.footer__social) {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer__links > a:not(.footer__social):hover {
  text-decoration: underline;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer__social:hover {
  color: var(--text);
  border-color: rgba(236, 72, 153, 0.4);
  background: rgba(236, 72, 153, 0.08);
}

.footer__credit {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: right;
}

.footer__credit p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__credit a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__credit a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .highlight__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .highlight__visual {
    order: -1;
  }

  .vinyl {
    width: 200px;
    height: 200px;
  }

  .hero__stats {
    gap: 2rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .footer__credit {
    text-align: center;
  }

  .donate-btn {
    bottom: 1rem;
    left: 1rem;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .cookie-widget {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}
